crypto-js可用于加密。简单加密可直接如下使用:
var CryptoJS = require('crypto-js');
var hash = CryptoJS.MD5('celavie');
console.log(hash.toString());
console.log('md5 base64: ' + hash.toString(CryptoJS.enc.Base64));
var hash = CryptoJS.SHA1('celavie');
console.log(hash.toString());
console.log('sha1 base64: ' + hash.toString(CryptoJS.enc.Base64));
var hash = CryptoJS.SHA256('celavie');
console.log(hash.toString());
console.log('sha256 base64: ' + hash.toString(CryptoJS.enc.Base64));
var hash = CryptoJS.SHA512('celavie');
console.log(hash.toString());
console.log('sha512 base64: ' + hash.toString(CryptoJS.enc.Base64));
var hash = CryptoJS.SHA3('celavie');
console.log(hash.toString());
console.log('sha3 base64: ' + hash.toString(CryptoJS.enc.Base64));
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。